home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / lang / fpc09905c.lha / fpc / units / printer.pp < prev    next >
Text File  |  1998-09-21  |  755b  |  34 lines

  1. {
  2.     $Id: printer.pp,v 1.2 1998/07/06 15:08:54 carl Exp $
  3.     This file is part of the Free Pascal run time library.
  4.     Copyright (c) 1993,98 by Florian Klaempfl
  5.     member of the Free Pascal development team
  6.  
  7.     Printer unit for BP7 compatible RTL
  8.  
  9.     See the file COPYING.FPC, included in this distribution,
  10.     for details about the copyright.
  11.  
  12.     This program is distributed in the hope that it will be useful,
  13.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15.  
  16.  **********************************************************************}
  17. unit printer;
  18. interface
  19.  
  20. var
  21.   lst : text;
  22.  
  23. implementation
  24.  
  25.  
  26.  
  27. begin
  28.   assign(lst,'prt:');
  29.   rewrite(lst);
  30. end.
  31. {
  32.  $Log :printer.pp,v $
  33. }
  34.